From: Stefan Monnier Date: Mon, 4 May 2009 19:43:22 +0000 (+0000) Subject: (frame-list): Clarify which frames are returned. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~666 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=4b40ec88c0dd1d22117a4a2c3d3f8d25f639c45b;p=emacs.git (frame-list): Clarify which frames are returned. --- diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 597df621106..28052165575 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi @@ -1178,11 +1178,11 @@ calls the function @code{delete-frame}. @xref{Misc Events}. @cindex frames, scanning all @defun frame-list -The function @code{frame-list} returns a list of all the frames that -have not been deleted. It is analogous to @code{buffer-list} for -buffers, and includes frames on all terminals. The list that you get is -newly created, so modifying the list doesn't have any effect on the -internals of Emacs. +The function @code{frame-list} returns a list of all the live frames, +i.e.@: those that have not been deleted. It is analogous to +@code{buffer-list} for buffers, and includes frames on all terminals. +The list that you get is newly created, so modifying the list doesn't +have any effect on the internals of Emacs. @end defun @defun visible-frame-list diff --git a/src/frame.c b/src/frame.c index eb9088b5478..de857af0273 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1042,7 +1042,7 @@ Return WINDOW. */) DEFUN ("frame-list", Fframe_list, Sframe_list, 0, 0, 0, - doc: /* Return a list of all frames. */) + doc: /* Return a list of all live frames. */) () { Lisp_Object frames;